home *** CD-ROM | disk | FTP | other *** search
/ CD Concept 6 / CD Concept 06.iso / mac / UTILITAIRE / RLaB / help / max < prev    next >
Encoding:
Text File  |  1994-05-05  |  625 b   |  24 lines  |  [TEXT/RLAB]

  1. max:
  2.  
  3. Synopsis: Compute the maximum value(s) in a matrix, or two
  4.       matrices.
  5.  
  6. Syntax:    max ( A )
  7.     max ( A , B )
  8.  
  9. Description:
  10.  
  11.     Max returns the maximum value(s) contained in the matrix A. If
  12.     the argument is a vector, then the largest value is returned.
  13.     If A is a MxN matrix, then a row-vector of N columns is
  14.     returned containing the maximum value from each column of A.
  15.  
  16.     If max is used with two arguments, then max returns a matrix
  17.     the same size as A and B filled with the largest elements from
  18.     A and B.
  19.  
  20.     When matrix elements are complex the absolute value is used
  21.     for comparison purposes.
  22.  
  23. See Also: maxi, min, mini
  24.